home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / C Internet Config / IC Application Source ƒ / Headers ƒ / IC Subs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-19  |  391 b   |  28 lines  |  [TEXT/SPM ]

  1. /*
  2.     IC Subs.h
  3.     
  4. */
  5.  
  6. #pragma once
  7.  
  8. #ifndef __H_IC_Subs__
  9. #define __H_IC_Subs__
  10.  
  11. #include "IC Types.h"
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17. OSErr ICMapErr(ICError icerr);
  18. ICError ICGetPrefStr(ICInstance inst,StringPtr key,ICAttr* attr,StringPtr str);
  19. ICError ICSetPrefStr(ICInstance inst,StringPtr key,ICAttr attr,StringPtr str);
  20.  
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24.  
  25. #endif /* __H_IC_Subs__ */
  26.  
  27.  
  28.